| 123456789101112131415161718 |
- import PlaceholderPage from "@/components/placeholders/PlaceholderPage";
- /**
- * /:branch/:year
- *
- * Next.js 15+ treats `params` as an async value (Promise) for dynamic routes.
- */
- export default async function BranchYearPage({ params }) {
- const resolvedParams = await params;
- return (
- <PlaceholderPage
- title="Year"
- description="Year placeholder (future: months overview / explorer drill-down)."
- params={resolvedParams}
- />
- );
- }
|